From a37270da7b9dc3ae58bf4279c57701036fb195be Mon Sep 17 00:00:00 2001 From: Conrad Irwin Date: Mon, 21 Jun 2010 23:22:22 +0000 Subject: [PATCH] (bug 11641) support \dots[cmio] in Thanks to Brian Foley for the patch. --- RELEASE-NOTES | 1 + math/texutil.ml | 4 ++++ 2 files changed, 5 insertions(+) diff --git a/RELEASE-NOTES b/RELEASE-NOTES index 758d7e35d4..b6b1046d17 100644 --- a/RELEASE-NOTES +++ b/RELEASE-NOTES @@ -88,6 +88,7 @@ it from source control: http://www.mediawiki.org/wiki/Download_from_SVN contributions * (bug 17857) {{anchorencode}} acts more like how the parser creates section ids. * (bug 21477) \& can now be used in +* (bug 11641) \dotsc \dotsm \dotsi \dotso can now be used in === Bug fixes in 1.17 === * (bug 17560) Half-broken deletion moved image files to deletion archive diff --git a/math/texutil.ml b/math/texutil.ml index f9f4f9a3b8..80adf600de 100644 --- a/math/texutil.ml +++ b/math/texutil.ml @@ -409,6 +409,10 @@ let find = function | "\\mod" -> (tex_use_ams (); LITERAL (HTMLABLE (FONT_UFH,"\\mod ", "mod"))) | "\\Diamond" -> (tex_use_ams (); LITERAL (HTMLABLE (FONT_UF, "\\Diamond ", "◊"))) | "\\dotsb" -> (tex_use_ams (); LITERAL (HTMLABLE (FONT_UF, "\\dotsb ", "⋅⋅⋅"))) + | "\\dotsc" -> (tex_use_ams (); LITERAL (HTMLABLE (FONT_UF, "\\dotsc ", "..."))) + | "\\dotsi" -> (tex_use_ams (); LITERAL (HTMLABLE (FONT_UF, "\\dotsi ", "⋅⋅⋅"))) + | "\\dotsm" -> (tex_use_ams (); LITERAL (HTMLABLE (FONT_UF, "\\dotsm ", "⋅⋅⋅"))) + | "\\dotso" -> (tex_use_ams (); LITERAL (HTMLABLE (FONT_UF, "\\dotso ", "..."))) | "\\reals" -> (tex_use_ams (); LITERAL (HTMLABLE (FONT_UFH,"\\mathbb{R}", "R"))) | "\\Reals" -> (tex_use_ams (); LITERAL (HTMLABLE (FONT_UFH,"\\mathbb{R}", "R"))) | "\\R" -> (tex_use_ams (); LITERAL (HTMLABLE (FONT_UFH,"\\mathbb{R}", "R"))) -- 2.20.1